Help > Reference > Macros > Runtime object > SaveDialog method

SaveDialog method

Calling this method will present the user with the standard Windows "Save" dialog.

Member of

Runtime

Type

Function(FileName, Filters)

Parameters

Return

Example

Dest = SaveDialog("output.txt", "Text Files (*.txt)|*.txt")
If Dest <> "" Then
  For Each Document in App.ActiveTab.FetchAll
    ' Do your processing here
  Next
End If

See Also

Macro Object Model

Runtime